home *** CD-ROM | disk | FTP | other *** search
- package java.lang;
-
- public class ExceptionInInitializerError extends LinkageError {
- private Throwable exception;
-
- public ExceptionInInitializerError() {
- }
-
- public ExceptionInInitializerError(Throwable var1) {
- this.exception = var1;
- }
-
- public ExceptionInInitializerError(String var1) {
- super(var1);
- }
-
- public Throwable getException() {
- return this.exception;
- }
-
- public String toString() {
- return this.exception != null ? this.getClass().getName() + ": " + this.exception : super.toString();
- }
- }
-